        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f9fafc;
            overflow-x: hidden;
        }
        .animated-bg {
            position: relative;
            background: linear-gradient(135deg, #f5f7fe 0%, #eef2ff 100%);
            overflow: hidden;
        }
        .animated-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(37,99,235,0.04) 0%, rgba(37,99,235,0) 70%);
            animation: rotateGlow 22s infinite linear;
            z-index: 0;
        }
        @keyframes rotateGlow {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Breadcrumb Hero */
        .breadcrumb-hero {
            background: linear-gradient(105deg, #0b2b5c 0%, #1e4a8a 100%);
            border-radius: 28px;
            padding: 1rem 1rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.2);
        }
        .breadcrumb-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.08"><path fill="white" d="M60,100 L100,40 L140,100 L100,160 Z M100,20 L140,80 L100,140 L60,80 Z" /></svg>');
            background-repeat: repeat;
            background-size: 40px;
            pointer-events: none;
        }
        .breadcrumb-hero h1 {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #ffffff, #e0f2fe);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 0.5rem;
            text-align: center;
        }
        .breadcrumb-hero .breadcrumb-nav {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(8px);
            display: inline-flex;
            padding: 0.5rem 1.4rem;
            border-radius: 60px;
            font-size: 0.95rem;
            font-weight: 500;
            margin-top: 0.75rem;
        }
        .breadcrumb-hero .breadcrumb-nav a {
            color: #facc15;
            text-decoration: none;
            transition: 0.2s;
        }
        .breadcrumb-hero .breadcrumb-nav a:hover {
            color: white;
        }
        .breadcrumb-hero .breadcrumb-nav .separator {
            color: #cbd5e1;
            margin: 0 8px;
        }
        .breadcrumb-hero .breadcrumb-nav .current {
            color: white;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .breadcrumb-hero h1 { font-size: 2rem; }
            .breadcrumb-hero { padding: 1.5rem; }
        }

        /* Principal Card */
        .principal-card {
            background: white;
            border-radius: 2rem;
            border-left: 6px solid #f59e0b;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .principal-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 40px -15px rgba(0,0,0,0.15);
        }
        .principal-img {
            width: 160px;
            height: 160px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid white;
            box-shadow: 0 15px 25px -8px rgba(0,0,0,0.2);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }
        .principal-img:hover {
            transform: scale(1.03);
            box-shadow: 0 20px 30px -8px rgba(0,0,0,0.25);
        }
        .quote-icon {
            font-size: 2.2rem;
            color: #f59e0b;
            opacity: 0.4;
        }
        .signature {
            font-family: 'Brush Script MT', cursive;
            font-size: 1.6rem;
            color: #1e3a8a;
            font-weight: 500;
        }
        /* Role Description Box - Simple & Clear */
        .role-box {
            background: #fefce8;
            border-radius: 1.5rem;
            border-left: 4px solid #f59e0b;
            transition: all 0.3s;
        }
        .role-box:hover {
            background: #fef9e3;
            transform: translateX(5px);
        }
        .list-styled {
            list-style: none;
            padding-left: 0;
        }
        .list-styled li {
            margin-bottom: 0.6rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .list-styled li i {
            color: #f59e0b;
            font-size: 1rem;
            width: 22px;
        }
        .fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes gentleGlow {
            0% { box-shadow: 0 0 0 0 rgba(245,158,11,0.4); }
            70% { box-shadow: 0 0 0 12px rgba(245,158,11,0); }
            100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
        }
        .principal-img {
            animation: gentleGlow 3s infinite;
        }
        hr.gradient-hr {
            height: 3px;
            background: linear-gradient(90deg, #2563eb, #60a5fa, #bfdbfe);
            width: 80px;
            margin: 1rem auto;
            border-radius: 4px;
        }
        .btn-close-custom {
            cursor: pointer;
        }
  